home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 …ember: Reference Library / Dev.CD Dec 00 RL Disk 1.toast / pc / technical documentation / develop / develop issue 26 / develop issue 26 code / truffles - display mgr. / superfly source / superfly.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  856 b   |  42 lines

  1. /*
  2.     File:        BigBrains.h
  3.  
  4.     Contains:    Definitions for Application-specific code for BigBrains.
  5.                 
  6.     Written by: Kent Miller
  7.  
  8.     Copyright:    © 1996 by Kent Miller, all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  */
  12.  
  13. #ifndef    _SUPERFLY_
  14. #define    _SUPERFLY_
  15.  
  16. #include "LinkedList.h"
  17. #include "SuperFlyToolWindow.h"
  18.  
  19. enum {
  20.     kAboutBox = 128,
  21.     cMirroring = 1000,
  22.     cAboutSprocket = 1001,
  23.     kErrorList    = 128,
  24.     kNoDisplayManager = 1,
  25.     kNoColorQD = 2
  26.     };
  27.  
  28.  
  29. //Function Prototypes
  30. void    SuperFlyTearDownMyWindows(void);
  31. OSErr    SuperFlySetUpWindows(void);
  32. void    SuperFlyHandleGDevicesMoved(void);
  33. void    AboutBox(void);
  34.  
  35. //Global variables unique to our application
  36. extern         TLinkedList         *gMyWindowList;
  37. extern        TSuperFlyToolWindow *gMyToolWindow;
  38. extern        Boolean                gMirroringWasOn;  //Was mirroring on when I started?
  39. extern        Boolean                gHasTranslucentDrag;
  40.  
  41. #endif
  42.